crypto/tls.halfConn.cipher (field)

14 uses

	crypto/tls (current package)
		conn.go#L176: 	cipher  any    // cipher algorithm
		conn.go#L221: 	hc.cipher = hc.nextCipher
		conn.go#L235: 	hc.cipher = suite.aead(key, iv)
		conn.go#L260: 	if hc.cipher == nil {
		conn.go#L264: 	switch c := hc.cipher.(type) {
		conn.go#L358: 	if hc.cipher != nil {
		conn.go#L359: 		switch c := hc.cipher.(type) {
		conn.go#L483: 	if hc.cipher == nil {
		conn.go#L490: 		if _, isCBC := hc.cipher.(cbcMode); !isCBC && explicitNonceLen < 16 {
		conn.go#L509: 	switch c := hc.cipher.(type) {
		conn.go#L698: 	if c.in.cipher == nil && typ == recordTypeApplicationData {
		conn.go#L906: 	if c.out.cipher != nil {
		conn.go#L907: 		switch ciph := c.out.cipher.(type) {
		conn.go#L1239: 		if _, ok := c.out.cipher.(cipher.BlockMode); ok {